home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Directories
/
FolderInfoLoop.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
390b
|
26 lines
// FolderInfoLoop.h
#ifndef FolderInfoLoop_h
#define FolderInfoLoop_h
#ifndef CatInfoLoop_h
#include "CatInfoLoop.h"
#endif
class FolderInfoLoop: public CatInfoLoop
{
private:
void AdvanceToNextMatch();
public:
FolderInfoLoop() {}
FolderInfoLoop( Directory );
void Start( Directory );
void operator++();
void operator++(int) { operator++(); }
};
#endif